home *** CD-ROM | disk | FTP | other *** search
/ SGI SNMP Access to HP-UX MIB 1.1.2 / SGI SNMP Access to HP-UX MIB 1.1.2.iso / dist / pcp_eoe.idb / var / pcp / etc / local.z / local
Text File  |  1998-04-24  |  432b  |  25 lines

  1. #! /sbin/sh
  2. #
  3. # pcplocal - perform local Performance Co-Pilot boot/shutdown/restart actions
  4. #
  5. # $Id: etc_init.d_pcplocal,v 2.2 1997/11/12 12:56:33 kenmcd Exp $
  6.  
  7. # Some degree of paranoia here ...
  8. PATH=/usr/sbin:/usr/bsd:/sbin:/usr/bin:/bin:/usr/pcp/bin
  9. export PATH
  10.  
  11. case $1 in
  12.  
  13.     'start')
  14.         # Add startup actions here
  15.         ;;
  16.  
  17.     'stop')
  18.         # Add shutdown actions here
  19.         ;;
  20.  
  21.     *)
  22.         echo "Usage: $0 {start|stop}"
  23.         ;;
  24. esac
  25.